/* Define Color Scheme */
:root {
    --primary-color: #0A3D62; /* Deep Blue */
    --accent-color: #F4C724; /* Golden Yellow */
    --background-color: #F8F9FA; /* Light Gray */
    --text-color: #333333; /* Dark Gray */
    --cta-color: #E74C3C; /* Vibrant Red */
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background: linear-gradient(to right, #8360c3, #2ebf91);
}

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Header Styling */
header {
    background-color: #222; /* Dark background */
    color: var(--text-color); /* Use the defined text color */
    padding: 15px 20px;
}

/* CTA Button */
.cta-button {
    background-color: var(--cta-color);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    margin-left: 20px;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #c0392b;
}

* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; */ Ensures it fully covers the viewport */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-video-container {
    top: 0;
    left: 0;
    width: 100%;
    height: auto
    overflow: hidden; /* Ensures the video doesn't overflow */
}

.hero-video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Keeps video in the background */
}

/* Quotation Container */
.quotation-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.quotation-container h2 {
    font-size: 24px;
    color: #1d3557;
    margin-bottom: 20px;
}

.quotation-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

/* Form Elements */
form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Focus and Hover Effects */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #1d3557;
    background-color: #f0f8ff;
}

input:hover, select:hover, textarea:hover {
    border-color: #1d3557;
}

/* Button Styles */
button {
    padding: 15px;
    font-size: 16px;
    color: #fff;
    background-color: #1d3557;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

button:hover {
    background-color: #457b9d;
}

footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
    font-size: 16px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffcc00;
}

.footer-section p {
    margin: 5px 0;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #ffcc00;
}

.whatsapp img {
    width: 200px;  /* Adjust the size as needed */
    height: auto;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000; /* Keeps it above other elements */
}
/* Social Media Links */
.social-links a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .hero-video {
        padding-top: 11vh;
    }

    .quotation-container {
        padding-top: 20vh;
        padding-bottom: 20vh;
    }
    
    .whatsapp img {
        width: 100px;  /* Adjust the size as needed */
        height: auto;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000; /* Keeps it above other elements */
    }
}    